From: awilliam@xenbuild.aw Date: Sun, 14 May 2006 15:16:21 +0000 (-0600) Subject: [IA64] Fix VTI boot X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~16069 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=c7b2d5a31b1cb005da2411458c124cf7708054db;p=xen.git [IA64] Fix VTI boot fix cset 10003. the variable, end, of vmx_build_physmap_table() also must adjusted. Signed-off-by: Isaku Yamahata --- diff --git a/xen/arch/ia64/vmx/vmx_init.c b/xen/arch/ia64/vmx/vmx_init.c index ca5e100637..e016c801a7 100644 --- a/xen/arch/ia64/vmx/vmx_init.c +++ b/xen/arch/ia64/vmx/vmx_init.c @@ -351,6 +351,8 @@ int vmx_build_physmap_table(struct domain *d) /* Map normal memory below 3G */ end = VMX_CONFIG_PAGES(d) << PAGE_SHIFT; + if (end > VGA_IO_START) + end += VGA_IO_SIZE; tmp = end < MMIO_START ? end : MMIO_START; for (i = 0; (i < tmp) && (list_ent != &d->page_list); i += PAGE_SIZE) { if (VGA_IO_START <= i && i < VGA_IO_START + VGA_IO_SIZE)